home *** CD-ROM | disk | FTP | other *** search
/ Aminet 22 / Aminet 22 (1997)(GTI - Schatztruhe)[!][Dec 1997].iso / Aminet / dev / basic / dbview2_ace105.lha / dbview2_ace / dbview2.doc < prev    next >
Text File  |  1997-09-06  |  2KB  |  78 lines

  1. The »dbview2« package
  2. =====================
  3.  
  4. This package provides support for dBase files with ACE Basic v2.4 and
  5. consists of the following files:
  6.  
  7. DBF.doc:       Explanation of the dBase file structure
  8. dbview2.doc:   This file
  9. dbview2.b:     A sample source
  10. dbview2:       A sample program
  11.  
  12. Overview
  13. --------
  14.  
  15. Dbview2 reads a dBase random access file and displays its contents on the
  16. screen. All field types (except memos and OLE) are supported. Lotus Approach
  17. .APR files are ignored.
  18.  
  19. Up to 256 fields with up to 4 KB data each are possible.
  20.  
  21. Internal
  22. --------
  23.  
  24. For details, you should read the commented source code.
  25.  
  26. If you want to develop a dBase conversion utility, you should write the
  27. string d$ to disk. (This is also mentioned in the source code.) You should
  28. refer to your ACE documentation for more information about sequential
  29. files.
  30.  
  31. The program uses the "dos.library" to be as fast as possible.
  32.  
  33. Using the package with an ACE 2.0 - 2.3.5
  34. -----------------------------------------
  35.  
  36. In this case you have to rename the library function names. Perform the
  37. following steps:
  38.  
  39. (1)  Call a text editor (I suggest to use MEmacs.)
  40.  
  41. (2)  Load the file "dbview2.b"
  42.  
  43. (3)  Call the Search/Replace function and replace the following strings:
  44.  
  45.      Search for:            replace with:
  46.  
  47.      _Open                  xOpen
  48.      _Close                 xClose
  49.      _Read                  xRead
  50.      _Write                 xWrite
  51.  
  52. (4)  Save the file and quit the editor.
  53.  
  54. Copyright / Distribution
  55. ------------------------
  56.  
  57. © 1996-1997 by FR-SoftWorks.
  58.  
  59. The package may be freely distributed. Ensure that you always distribute the
  60. whole package. You are allowed to use package in commercial software, too.
  61.  
  62. How to contact the author
  63. -------------------------
  64.  
  65. Write bug reports and / or suggestions to:
  66.  
  67.   Frank Reibold
  68.   Ottberger Weg 13
  69.  
  70.   31737 Rinteln
  71.  
  72.   GERMANY
  73.  
  74. eMail: Peter.Reibold@T-Online.de
  75.  
  76. *** Have fun!!! ***
  77.  
  78.